home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / m / music_x_ii / musicxii4.dms / musicxii4.adf / Install_Notator-X_HD < prev    next >
Text File  |  1994-04-22  |  2KB  |  118 lines

  1. ; Installation script for Notator-X 1.07
  2. ; $VER: Install-Notator-X (18th July 1993)
  3.  
  4.  
  5. ; some 'constants'
  6.  
  7. (set app_volume_name_1 "Notator-X")
  8. (set app_volume_name_2 "NX_Utilities")
  9. (set app_volume_1 "Notator-X:")
  10. (set app_volume_2 "NX_Utilities:")
  11. (set orig_user_level @user-level)
  12.  
  13. (user orig_user_level)
  14.  
  15. ; tell average/expert user what we'll be doing
  16.  
  17. (message
  18.    "\nYour copy of Notator-X will be installed in a new drawer named "
  19.    "\"Notator-X\". You will be asked where on your hard drive "
  20.     "(or other storage device) you want this drawer created. In addition, "
  21.    "some fonts and libraries will be installed into your system area."
  22. )
  23.  
  24. ; ask user where to put the drawer
  25.  
  26. (set app_locate
  27.  (askdir
  28.   (prompt "Please indicate where you want the Notator-X Drawer "
  29.          "to be located.")
  30.   (help @askdir-help)
  31.   (default @default-dest)
  32.  )
  33. )
  34.  
  35. ; make the main drawer
  36.  
  37. (set app_locate (tackon app_locate "Notator-X"))
  38.  
  39. (makedir app_locate (infos))
  40.  
  41. (set @default-dest app_locate)
  42.  
  43. ; Copy any scores
  44. (copyfiles
  45.   (source app_volume_2)
  46.   (dest app_locate)
  47.   (choices "Scores" "File_Format.doc" "Read_ME!.doc")
  48.   (infos)
  49. )
  50.  
  51. (complete 5)
  52.  
  53. ; Ask the user to insert the Notator-X Program Disk
  54. (askdisk
  55.   (prompt "Please insert the disk labeled \"Notator-X Program Disk\".")
  56.   (help @askdisk-help)
  57.   (dest app_volume_name_1)
  58. )
  59.  
  60. ; Copy the Desert Software Library
  61. (copyfiles
  62.   (source (tackon app_volume_1 "libs"))
  63.   (dest "LIBS:")
  64.   (choices "desertsoftware.library")
  65. )
  66.  
  67. (complete 8)
  68.  
  69. ; Copy the Fonts
  70. (copyfiles
  71.   (source (tackon app_volume_1 "fonts"))
  72.   (dest "FONTS:")
  73.   (choices "DesertSoftware" "NX_TimesRoman")
  74.   (fonts)
  75. )
  76.  
  77. (complete 20)
  78.  
  79. ; Copy all of the Notator-X Files
  80.  
  81. (copyfiles
  82.   (source app_volume_1)
  83.   (dest app_locate)
  84.   (choices "Notator-X")
  85.   (infos)
  86. )
  87.  
  88. (complete 60)
  89.  
  90. (copyfiles
  91.   (source app_volume_1)
  92.   (dest app_locate)
  93.   (choices "File_Formats")
  94.   (infos)
  95. )
  96.  
  97. (complete 80)
  98.  
  99. (copyfiles
  100.   (source app_volume_1)
  101.   (dest app_locate)
  102.   (choices "Notator-X_Data")
  103.   (infos)
  104. )
  105.  
  106. (complete 90)
  107.  
  108. (copyfiles
  109.   (source app_volume_1)
  110.   (dest app_locate)
  111.   (choices "NX_Modules")
  112.   (infos)
  113. )
  114.  
  115. (complete 100)
  116.  
  117. (exit)
  118.